#__import__
def __import__(name, globals=None, locals=None, fromlist=(), level=0):
'''
Description: Import a module.
:param name: Module name
:param globals: Global namespace dictionary
:param locals: Local namespace dictionary
:param fromlist: List of names to import
:param level: Absolute import (0) or relative import
:return: The imported module
'''
Example:
math = __import__('math')
print(math)
print(math.pi)